home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / spind < prev    next >
Text File  |  2006-01-09  |  469b  |  21 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2005 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo/src/livecd-tools/spind.init,v 1.5 2005/03/01 18:13:51 wolf31o2 Exp $
  5.  
  6. depend() {
  7.     before local
  8. }
  9.  
  10. start() {
  11.     ebegin "Starting spin daemon"
  12.     start-stop-daemon --start --quiet --exec /usr/sbin/spind &
  13.     eend $?
  14. }
  15.  
  16. stop() {
  17.     ebegin "Stopping spind"
  18.     start-stop-daemon --stop --quiet --exec /usr/sbin/spind
  19.     eend $?
  20. }
  21.